Method Transform(Expression<Func<TProp, TProp>>)

Assembly: redb.Core.Pro.dll

Transform values without type change.
builder.Property(p => p.Phone)
.Transform(v => v.Replace("-", ""));

public IPropertyMigrationBuilder<TProps, TProp> Transform(Expression<Func<TProp, TProp>> transformer)